From 368b5c6d5e62ea1adbea7736f034b2b1b7862b5b Mon Sep 17 00:00:00 2001 From: robertl Date: Wed, 6 Apr 2005 18:29:56 +0000 Subject: [PATCH] Fix for names ending in "]". git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@1127 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/geo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/geo.c b/gpsbabel/geo.c index 5caf4c0d9..c93cdc559 100644 --- a/gpsbabel/geo.c +++ b/gpsbabel/geo.c @@ -89,7 +89,7 @@ void wpt_name_s(const char *args, const char **attrv) void wpt_name(const char *args, const char **unused) { - if (args) wpt_tmp->description = xstrdup(args); + if (args) wpt_tmp->description = xstrappend(wpt_tmp->description,args); } void wpt_link_s(const char *args, const char **attrv) -- 2.30.2